home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Printing
/
PageSetupInfo.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
428b
|
28 lines
// PageSetupInfo.h
#ifndef PageSetupInfo_h
#define PageSetupInfo_h
#ifndef Announcer_h
#include "Announcer.h"
#endif
#include <Printing.h>
class PrintManager;
class PageSetupInfo: public TPrint,
public Announcer
{
private:
TPrint& AsTPrint() { return *this; }
// This gets around a bug in CW Pro 4
public:
explicit PageSetupInfo( PrintManager& );
void ShowDialog( PrintManager& );
};
#endif